win32: fix the build
authorMatthias Clasen <mclasen@redhat.com>
Thu, 3 Jul 2014 12:12:56 +0000 (08:12 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 3 Jul 2014 12:13:29 +0000 (08:13 -0400)
A recent cleanup gone wrong,
https://bugzilla.gnome.org/show_bug.cgi?id=732454

gdk/win32/gdkevents-win32.c

index f3b7dc2033193500d6a29125635dae730e40dc6b..5a4efee838eb77557ed499ab6be3465542043f99 100644 (file)
@@ -1528,11 +1528,10 @@ handle_wm_paint (MSG        *msg,
 
   hdc = BeginPaint (msg->hwnd, &paintstruct);
 
-  GDK_NOTE (EVENTS, g_print (" %s %s dc %p%s",
+  GDK_NOTE (EVENTS, g_print (" %s %s dc %p",
                             _gdk_win32_rect_to_string (&paintstruct.rcPaint),
                             (paintstruct.fErase ? "erase" : ""),
-                            hdc,
-                            (return_exposes ? " return_exposes" : "")));
+                            hdc));
 
   EndPaint (msg->hwnd, &paintstruct);